home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / zmdm / makefile.mwc < prev    next >
Makefile  |  1993-06-26  |  717b  |  25 lines

  1. #
  2. # Makefile for Mark Williams C
  3. #    Version 2.00 required.
  4. #    Please ignore warnigs about a constant being promoted to long
  5. #    and about some unused variables.
  6. #    Fix your timezone at the top of TYME.C before compiling
  7. #    Define RECURSE only if you want the expand a directory
  8. #    to all its children feature for `sz', when you specify
  9. #    a directory name as an arg to `sz'.
  10. #
  11. #    Jwahar Bammi
  12. #
  13. #
  14. SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c hi5025.s
  15. OBJ = common.o rz.o sz.o transfer.o util.o main.o tyme.o zm.o fileio.o hi5025.o
  16. CFLAGS = -O -DMWC -DRECURSE -V -DBIGSTACK
  17.  
  18. zmdm.prg : $(OBJ)
  19.     cc -O -o zmdm.prg $(OBJ) -s -x -V
  20.  
  21. $(OBJ) : common.h zmdm.h decl.h
  22.  
  23. clean:
  24.     rm *.o
  25.